Represents a collection of mappings for properties of the BasePersistableObject object to the appropriate data fields. Names of properties are keys in this collection.

Namespace:  C1.C1Schedule
Assembly:  C1.Silverlight.Schedule (in C1.Silverlight.Schedule.dll)

Syntax

C#
public class MappingCollectionBase<T> : KeyedCollection<string, MappingInfo>
where T : new(), BasePersistableObject
Visual Basic
Public Class MappingCollectionBase(Of T As {New, BasePersistableObject}) _
	Inherits KeyedCollection(Of String, MappingInfo)

Type Parameters

T
The type of the objects for mapping. It should be derived from the BasePersistableObjectclass and have the default parameter-less constructor.

Inheritance Hierarchy

See Also